Groups

object Groups : BaseTable<Group>

Object representing the Groups table in the database.

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val columns: List<Column<*>>
Link copied to clipboard
val createdBy: Column<String>

the userId of user who created the group

Link copied to clipboard
Link copied to clipboard
val id: Column<String>

the unique identifier of the group

Link copied to clipboard
val name: Column<String>

the name of the group

Link copied to clipboard
val primaryKeys: List<Column<*>>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open fun aliased(alias: String): BaseTable<Group>
Link copied to clipboard
open fun asExpression(): TableExpression
Link copied to clipboard
fun createEntity(row: QueryRowSet, withReferences: Boolean): Group
Link copied to clipboard
operator override fun equals(other: Any?): Boolean
Link copied to clipboard
operator fun get(name: String): Column<*>
Link copied to clipboard
override fun hashCode(): Int
Link copied to clipboard
fun <C : Any> Column<C>.primaryKey(): Column<C>
Link copied to clipboard
fun <C : Any> registerColumn(name: String, sqlType: SqlType<C>): Column<C>
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun <C : Any, R : Any> Column<C>.transform(fromUnderlyingValue: (C) -> R, toUnderlyingValue: (R) -> C): Column<R>